home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / coder.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-04-13  |  994 b   |  47 lines

  1. /*
  2.   ImageMagick Image Coder Methods.
  3. */
  4. #ifndef _MAGICK_CODER_H
  5. #define _MAGICK_CODER_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. typedef struct _CoderInfo
  12. {
  13.   char
  14.     *path,
  15.     *magick,
  16.     *name;
  17.                                                                                 
  18.   unsigned int
  19.     stealth;
  20.                                                                                 
  21.   struct _CoderInfo
  22.     *previous,
  23.     *next;  /* deprecated, use GetCoderInfoList() */
  24.  
  25.   unsigned long
  26.     signature;
  27. } CoderInfo;
  28.  
  29. extern MagickExport char
  30.   **GetCoderList(const char *,unsigned long *);
  31.  
  32. extern MagickExport const CoderInfo
  33.   *GetCoderInfo(const char *,ExceptionInfo *),
  34.   **GetCoderInfoList(const char *,unsigned long *);
  35.  
  36. extern MagickExport unsigned int
  37.   ListCoderInfo(FILE *,ExceptionInfo *);
  38.  
  39. MagickExport void
  40.   DestroyCoderList(void);
  41.  
  42. #if defined(__cplusplus) || defined(c_plusplus)
  43. }
  44. #endif
  45.  
  46. #endif
  47.